home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 April / SGI IRIX 6.5 Applications 2004 April.iso / dist / mozilla.idb / var / netscape / mozilla / chrome / toolkit.jar.z / toolkit.jar / content / global / fontpackage.xul < prev    next >
Extensible Markup Language  |  2003-11-11  |  3KB  |  95 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Communicator client code, released
  16.    - March 31, 1998.
  17.    -
  18.    - The Initial Developer of the Original Code is Netscape
  19.    - Communications Corporation. Portions created by Netscape are
  20.    - Copyright (C) 1998-2003 Netscape Communications Corporation. All
  21.    - Rights Reserved.
  22.    -
  23.    - Contributor(s):
  24.    -      Frank Yung-Fong Tang <ftang@netscape.com>
  25.    -      Simon Montagu <smontagu@netscape.com>
  26.    -      Seth Spitzer <sspitzer@netscape.com>
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the LGPL or the GPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <?xml-stylesheet href="chrome://communicator/skin" type="text/css"?>
  43. <!DOCTYPE dialog SYSTEM "chrome://global/locale/fontpackage.dtd">
  44.  
  45. <dialog title="&window.title;"
  46.         id="downloadFontDialog"
  47.         buttons="accept,cancel"
  48.         ondialogaccept="download();"
  49.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  50.         onload="onLoad();">
  51.  
  52.   <stringbundle id="fontPackageBundle"
  53.                 src="chrome://global/locale/fontpackage.properties"/>
  54.  
  55.   <script type="application/x-javascript"
  56.           src="chrome://global/content/fontpackage.js"/>
  57.  
  58.   <hbox>
  59.     <hbox align="start">
  60.       <image class="message-icon"/>
  61.     </hbox>
  62.     <separator orient="vertical" class="thin"/>
  63.     <vbox>
  64.  
  65.       <description>&info.label;</description>
  66.  
  67.       <separator orient="horizontal"/>
  68.  
  69.       <description id="languageTitle"/>
  70.  
  71.       <separator orient="horizontal"/>
  72.  
  73.       <hbox id="size">
  74.         <description value="&size.label;"/>
  75.         <description id="sizeSpecification"/>
  76.       </hbox>
  77.  
  78.       <description id="install" value="&install;"/>
  79.  
  80.       <separator orient="horizontal"/>
  81.  
  82.       <hbox>
  83.         <spacer flex="1"/>
  84.         <button dlgtype="accept" default="true"
  85.                 label="&downloadButton.label;"
  86.                 id="downloadButton"/>
  87.         <button dlgtype="cancel"
  88.                 label="&cancelButton.label;"
  89.                 id="cancelButton"/>
  90.         <spacer flex="1"/>
  91.       </hbox>
  92.     </vbox>
  93.   </hbox>
  94. </dialog>
  95.